function place_call(id, d_id) {
	var w = 500;
	var h = 350;
	var top = screen.height/2 - h/2;
	var left = screen.width/2 - w/2;
	var opts = "width=" + w + ",height=" + h + ",left=" + left + ",top=" + top + ",scrollbars=no, status=no";
	// myURL = "http://www.customervideo.com/members/virtual_rep/place_call.php?id=" + id + "&d_id=" + d_id;
	myURL = "http://www.customervideo.com/members/virtual_rep/place_call.php?id=" + id;
	//alert(myURL);
	callWindow = window.open(myURL, "call_window", opts);
}