function CentreWindow(mypage, myname, w, h, scroll) {
	var winl = ((screen.width - w) / 2) - 305;
	var wint = ((screen.height - h) / 2) - 230;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=no,resizable=no,status=no'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	win.window.focus();
}

function openStoreLocator(){
  CentreWindow('http://www.denghao.com/index.html','DENGHAO FASHION','418','400','no');
}

function joinTheCult(){
  CentreWindow('http://www.denghao.com/index.html','DENGHAO FASHION','700','520','yes');

}


function resizeBrowser(width, height){
	window.resizeTo(width, height)
}

function openFashionShow(){
	CentreWindow('http://www.denghao.com/index.html', 'DENGHAO FASHION', '1024', '768', 'no');
}

function openTerms(){
	CentreWindow('http://www.denghao.com/index.html', 'DENGHAO FASHION', '380', '400', 'yes');
}
