function popupSignIn(){
$.fn.colorbox({iframe:true,href:'login.php',width:"275px",height:"250px",open:true,title:"SIGN IN",cbox_open:popupDrag,speed:200});	
}
function popupSignUp(){
$.fn.colorbox({iframe:true,href:'signup.php',width:"400px",height:"320px",open:true,title:"SIGN UP",cbox_open:popupDrag,speed:200});	
}
function popupEditMember(uid){
$.fn.colorbox({iframe:true,href:'pmember_edit.php?uid='+uid,width:"400px",height:"320px",open:true,title:"EDIT INFO",cbox_open:popupDrag,speed:200});	
}
function popupDrag(dragHandler){
	$("#colorbox").easydrag();
	$("#colorbox").setHandler("cboxTitle");	
}
function popupDrag2(){
	$("#colorbox").easydrag();
	$("#colorbox").setHandler("businessname");	
}
function popupAbout(){
	$.fn.colorbox({href:'about.html',width:"300px",height:"225px",open:true,title:"ABOUT US",cbox_open:popupDrag});
}
function popupFeedback(){
	$.fn.colorbox({iframe:true,href:'pfeedback.php',width:"600px",height:"495px",open:true,title:"FEEDBACK",cbox_open:popupDrag});
}
function popupFlashHelp(){
	$.fn.colorbox({iframe:true,href:'help/index.html',width:"685px",height:"565px",open:true,title:"GETTING STARTED WITH SHOWSTREET",cbox_open:popupDrag});
}
function hidePopup(){
	$.fn.colorbox.close();
}

