// JavaScript Document

function Opensupport(newin, h, w) {
if (!h || !w) {
	Support = window.open(newin,"Support","resizeable=yes,scrollbars=yes,width=500,height=500 top=0,left=0");	
}
else {
	Support = window.open(newin,"Support","resizeable=yes,scrollbars=yes,width=" + w + ",height=" + h + "top=0,left=0");	
}
window.Support.focus();
}


//-->
