var win = null;
function NewWindow(mypage,myname,w,h,scroll){
if(document.getElementById('prices').value == 'nothing'){
alert('You must select a Pricing Option.\n\nThank you');
}
else
{
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no'
win = window.open(mypage,myname,settings);
    win.document.write('<font size="1" face="Arial" style="letter-spacing:1px"><a href="javascript:window.print()">print this</a> | <a href="javascript:window.close()">close window</a></font>');
    win.document.write('<HR color="c0c0c0">');
    win.document.write(document.getElementById('pricesShown').innerHTML);
	win.document.close();	
}
}