<!-- // This is the HTML Generator for Portfolio pages code // -->


timeout =5; // Close window after __ number of seconds?
// 0 = do not close, anything else = number of seconds


/*
Auto center window script- Eric King (http://redrival.com/eak/index.shtml)
Permission granted to Dynamic Drive to feature script in archive
For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
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'
win = window.open(mypage,myname,settings)
}




function Start(URL,newText) {
<!--windowprops = "left=10,top=10,width=" + (WIDTH+10) + ",height=" + (HEIGHT+10);-->
windowprops = "left=10,top=10,width=550,height=580" ;

text = "<html><head><title>Duo-Care || Introducing DUO-CARE combined blood glucose and wrist blood pressure monitor.</title><LINK rel='stylesheet' href='style/stylePopup.css' type='text/css'><script type='text/javascript' src='js/rollover.js'></script></head><BODY BGCOLOR='#ffffff' LEFTMARGIN='0' TOPMARGIN='0' MARGINHEIGHT='0' MARGINWIDTH='0' MARGINHEIGHT='0' MARGINWIDTH='0'";

if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";

text += "><table width='550' cellpadding='0' cellspacing='0' class='border'><tr><Td valign='top'>";

text +="<table width='550' cellpadding='0' cellspacing='0' class='greenfade'><tr><td valign='top' background='gif/intpurple.gif'><img src='gif/intpurple.gif' border='0'></td><td valign='top' background='gif/intpurple.gif'><a href='index.html'><img src='gif/intlogo.gif' width='358' height='138' border='0' galleryIMG='no' alt='Duo-Care || Introducing DUO-CARE combined blood glucose and wrist blood pressure monitor.' title='Duo-Care || Introducing DUO-CARE combined blood glucose and wrist blood pressure monitor.'></a></td></tr><tr><td colspan='2' bgcolor='#ffffff'><h1>You are now leaving the DUO-CARE&trade; website.</h1>";

text += "<p><a href='' onClick='self.close()' class='indexwhite'>Window closes</a> after " + timeout + " seconds.</p>";

text += "</td></tr><tr><td colspan='2'><img src='gif/rtimg01.gif' border='0' class='spacerbtm'></td></tr><tr><td valign='top' colspan='2'><p class='intsmall' align='right'>&copy;2006 GenExel-Sein, Inc.</p></td></tr></table></td></tr></table></body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}

