// JavaScript Document

function openWindow (url, name, width, height, scrol) {

eval("window.open('" + url + "','" + name + "','width=" + width + ",height=" + height + ",scrollbars=" + scrol +"')");
return false; 

}

function openContacts(dir, link) {
	
if(link == "") {
	var f_dir = dir + "contact.html";
} else {
	f_dir = link;
}
return openWindow(f_dir ,"", 440, 200, "no");

}