// JavaScript Document
function winnew(x,y) {
	document.getElementById(x).setAttribute('href','#');
	document.getElementById(x).setAttribute('target','_self');

	window.open(y,"new","width=750,height=600,scrollbars=yes,resizable=yes");
}

