

function popUp(myTargetPage, myWidth, myHeight) {
	var InstructionWin = window.open('myTargetPage','Instructions','scrollbars=yes, resizable=yes, height=myHeight,width=myWidth');
	InstructionWin.focus();
}
	