/*
Used for poping open new windows
*/

function pop_window(url) {
mywin = window.open(url,"win",'toolbar=yes,location=yes,directories=0,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=640,height=400');
window.mywin.focus();
}